home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / andere sprachen / powerlogo-1.4 / utilities / system.doc < prev    next >
Encoding:
Text File  |  1996-07-16  |  953 b   |  35 lines

  1.  
  2.    System.doc
  3.  
  4. LOGO system utilities:
  5.  
  6.  
  7. alert          screen text ( more-text yes-text title-text )
  8.          screen = Pointer to an intuition screen.
  9.          text = Word or list.
  10.    Wait for user to click 'yes'.
  11.  
  12. requester      screen text ( more-text yes-text no-text title-text )
  13.          screen = Pointer to an intuition screen.
  14.          text = Word or list.
  15.    Output true if 'yes' was clicked, false if 'no' was clicked.
  16.  
  17. screen-data    screen
  18.          screen = Pointer to an intuition screen.
  19.    Output list of data like that used to create the screen.
  20.    See: openscreen
  21.  
  22. turtle-data    turtle
  23.          turtle = Pointer to a LOGO turtle.
  24.    Output list of data like that used to create the turtle.
  25.    See: openturtle
  26.  
  27. window-data    window
  28.          window = Pointer to an intuition window.
  29.    Output list of data like that used to create the window.
  30.    See: openwindow
  31.  
  32. window-size
  33.    Output the limits for the cursor for the command window.
  34.  
  35.